/* =========================================
   KINSHIN PRESS — EPK page styles
   Uses same palette as theme.css
   ========================================= */

/* Reuse journal nav pattern */
.press-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid var(--ink-stroke);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}

.press-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.press-nav__logo { display: block; }

.press-nav__name {
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: 0.08em;
}

.press-nav__links {
  display: flex;
  gap: 28px;
}

.press-nav__link {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--ash);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.press-nav__link:hover { color: var(--ink); }

/* Hero */
.press-hero {
  padding: 100px 40px 80px;
  max-width: 780px;
  margin: 0 auto;
}

.press-hero__label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.press-hero__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 20px;
}

.press-hero__sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.5;
  font-weight: 300;
}

/* Section generic */
.press-section {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.press-section__label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.press-section__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 28px;
  line-height: 1.25;
}

.press-section__body p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 400;
  margin-bottom: 20px;
}

.press-section__body p em {
  color: var(--ash);
  font-size: 16px;
}

.press-divider {
  max-width: 780px;
  margin: 0 auto 60px;
  padding: 0 40px;
}

.press-divider__line {
  border: none;
  border-top: 1px solid var(--ink-stroke);
}

/* Product grid */
.press-products {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.press-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.press-product-card {
  border: 1px solid var(--ink-stroke);
  background: var(--bg-warm);
  padding: 28px 24px;
  position: relative;
}

.press-product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.press-product-card__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
}

.press-product-card__detail {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--ash);
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.press-product-card__detail span {
  display: block;
}

.press-product-card__detail .press-product-card__kanji {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 4px;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.press-product-card__price {
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  color: var(--ink);
  margin-top: 12px;
  letter-spacing: 0.05em;
}

.press-product-card__link {
  display: inline-block;
  margin-top: 12px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.press-product-card__link:hover {
  color: var(--ink);
}

/* Assets section */
.press-assets__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.press-asset-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border: 1px solid var(--ink-stroke);
  background: var(--bg-warm);
}

.press-asset-row__name {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.press-asset-row__desc {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px;
  color: var(--ash);
  font-style: italic;
}

.press-asset-row__download {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.press-asset-row__download:hover {
  color: var(--ink);
}

/* Boilerplate */
.press-boilerplate {
  border-left: 3px solid var(--gold);
  padding-left: 28px;
  margin-top: 8px;
}

.press-boilerplate p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 400;
}

/* Founder bio */
.press-founder {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.press-founder__mark {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.press-founder__mark img {
  width: 40px;
  height: 40px;
}

.press-founder__text p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 400;
  margin-bottom: 12px;
}

.press-founder__contact {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--gold);
  text-decoration: none;
}

.press-founder__contact:hover {
  color: var(--ink);
}

/* Contact */
.press-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.press-contact__email {
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  color: var(--ink);
}

.press-contact__email a {
  color: var(--gold);
  text-decoration: none;
}

.press-contact__email a:hover {
  color: var(--ink);
}

.press-contact__promise {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  font-style: italic;
  color: var(--ash);
}

/* ZIP download banner */
.press-zip-banner {
  max-width: 780px;
  margin: 0 auto 60px;
  padding: 0 40px;
}

.press-zip-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  background: var(--ink);
  border: 1px solid rgba(201, 162, 39, 0.15);
}

.press-zip-banner__text {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: var(--bg-warm);
  letter-spacing: 0.04em;
}

.press-zip-banner__btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s;
}

.press-zip-banner__btn:hover {
  opacity: 0.85;
}

/* Pull-quote */
.press-pullquote {
  margin: 0 0 16px;
  padding: 28px 36px;
  border-left: 3px solid var(--gold);
  background: var(--bg-warm);
}

.press-pullquote__text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 12px;
}

.press-pullquote__attr {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ash);
  text-transform: uppercase;
}

.press-pullquote__usage {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  font-style: italic;
  color: var(--ash);
  margin-top: 8px;
}

.press-inline-link {
  color: var(--gold);
  text-decoration: none;
}

.press-inline-link:hover {
  color: var(--ink);
}

/* Fact sheet table */
.press-fact-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Space Mono', monospace;
}

.press-fact-table th {
  text-align: left;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ash);
  padding: 12px 16px 12px 0;
  border-bottom: 1px solid var(--ink-stroke);
  width: 35%;
  vertical-align: top;
}

.press-fact-table td {
  font-size: 12px;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--ink-stroke);
  line-height: 1.5;
}

/* Color palette */
.press-palette {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.press-swatch__block {
  width: 100%;
  height: 80px;
  margin-bottom: 10px;
}

.press-swatch__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 2px;
}

.press-swatch__hex {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--ash);
  letter-spacing: 0.06em;
}

/* Recent coverage empty state */
.press-coverage-empty {
  border: 1px solid var(--ink-stroke);
  padding: 36px 32px;
  background: var(--bg-warm);
}

.press-coverage-empty__text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.5;
}

.press-coverage-empty__sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  font-style: italic;
  color: var(--ash);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 640px) {
  .press-nav { padding: 16px 20px; }

  .press-hero {
    padding: 60px 24px 60px;
  }

  .press-hero__title {
    font-size: 34px;
  }

  .press-section,
  .press-products,
  .press-divider,
  .press-zip-banner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .press-products__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .press-founder {
    flex-direction: column;
    gap: 20px;
  }

  .press-asset-row {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .press-zip-banner__inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .press-palette {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .press-pullquote {
    padding: 20px 20px;
  }

  .press-pullquote__text {
    font-size: 18px;
  }

  .press-coverage-empty {
    padding: 24px 20px;
  }
}
