/* JE identity board */
* { box-sizing: border-box; }
body { margin: 0; background: var(--je-paper); color: var(--je-ink); font-family: var(--je-text); line-height: 1.7; }
.board { display: grid; }

.bd-caps {
  margin: 0; font-weight: 600; font-size: 13px; letter-spacing: 0.4em; text-indent: 0.4em;
  color: var(--je-silver); direction: ltr; text-align: center;
}
.bd-caps.dark { color: var(--je-gray); }

.bd-hero {
  background: var(--je-ink); display: grid; place-items: center; align-content: center; gap: 40px;
  min-height: 520px; padding: 70px 24px;
}
.bd-mono { width: min(200px, 40vw); }

.bd-sec { padding: clamp(48px, 7vh, 84px) clamp(20px, 5vw, 64px); max-width: 1240px; margin-inline: auto; width: 100%; }
.bd-head { max-width: 60ch; margin-block-end: 34px; }
.bd-head h2 { margin: 0 0 8px; font-size: clamp(24px, 2.8vw, 34px); font-weight: 600; }
.bd-head p { margin: 0; color: var(--je-slate); }

.tri { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.tri figure { margin: 0; display: grid; gap: 10px; }
.tri img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; background: #F4F4F2; }
.tri-final { background: none; }
.tri-final img { object-fit: contain; padding: 12%; background: var(--je-white); }
.tri figcaption { font-size: 14.5px; color: var(--je-slate); text-align: center; }

.locks { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.lk { margin: 0; display: grid; place-items: center; aspect-ratio: 4 / 3; padding: 9%; min-width: 0; }
.lk img { width: 100%; height: 100%; object-fit: contain; }
.lk.paper { background: var(--je-white); }
.lk.ink { background: var(--je-ink); }
.lk.tall { padding: 5% 9%; }

.duo-use { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.duo-use figure { margin: 0; position: relative; display: grid; gap: 10px; }
.use-photo img:first-child { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.use-mark { position: absolute; width: clamp(40px, 6vw, 72px); inset-block-start: 28px; inset-inline-end: 28px; }
.use-flat { background: var(--je-white); place-items: center; }
.use-flat img { width: min(56%, 300px); margin: auto; padding-block: 40px; }
.duo-use figcaption { font-size: 14.5px; color: var(--je-slate); text-align: center; }

.palette { display: flex; min-height: 190px; }
.palette div { flex: 1; background: var(--c); display: grid; place-items: end center; padding-block-end: 14px; }
.palette b { color: var(--t); font-weight: 600; font-size: clamp(10px, 1.4vw, 14.5px); letter-spacing: 0.06em; }
.type-rows { margin-block-start: 26px; border-block-start: 1px solid var(--je-silver); }
.tr-row {
  display: grid; grid-template-columns: 150px 1fr; gap: 24px; align-items: baseline;
  padding-block: 22px; border-block-end: 1px solid var(--je-silver);
}
.tr-name { font-size: 12.5px; font-weight: 600; letter-spacing: 0.28em; color: var(--je-gray); }
.tr-vodan { margin: 0; font-family: var(--je-display); font-size: clamp(30px, 4.6vw, 58px); line-height: 1.05; }
.tr-assistant { margin: 0; font-size: clamp(19px, 2.4vw, 27px); font-weight: 500; }

.book-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.book-strip img { width: 100%; height: auto; border: 1px solid var(--je-silver); background: #fff; }

.apps { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.apps figure { margin: 0; }
.apps img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

.bd-foot { padding: 40px 20px 56px; }

@media (max-width: 860px) {
  .tri, .locks, .duo-use, .book-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }

}
@media (max-width: 540px) {
  .tri { grid-template-columns: 1fr; }
  .tri img { aspect-ratio: auto; }
  .locks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tr-row { grid-template-columns: 1fr; gap: 6px; }
  .apps { grid-template-columns: 1fr; }
}
