/* ---------------------------------------------------------------
   About page. Short by design: the client's words, a few figures
   the catalog can count for itself, the range, and a way through
   to an enquiry.
   --------------------------------------------------------------- */

.jb-about { padding-block: var(--jb-s6) var(--jb-s8); }

/* ---------- Head ---------- */

.jb-about__head { margin-bottom: var(--jb-s6); }

.jb-about__eyebrow {
  margin: 0 0 var(--jb-s2);
  font-size: var(--jb-fs-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--jb-500);
}

.jb-about__title {
  margin: 0;
  font-family: var(--jb-font-display);
  font-size: clamp(2.1rem, 6vw, 3.4rem);
  font-weight: var(--jb-display-weight);
  line-height: 1.02;
  letter-spacing: var(--jb-display-tracking);
  text-transform: uppercase;
  color: var(--jb-ink);
}
.jb-about__title::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-top: var(--jb-s4);
  background: var(--jb-amber);
}

/* ---------- Lead + facts ---------- */

.jb-about__grid {
  display: grid;
  gap: var(--jb-s6);
}
@media (min-width: 900px) {
  .jb-about__grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: var(--jb-s7);
    align-items: start;
  }
}

.jb-about__prose {
  max-width: 62ch;
  font-size: var(--jb-fs-lg);
  line-height: 1.6;
}
/* The opening line carries the page; the rest reads as body copy. */
.jb-about__prose > p:first-child {
  font-family: var(--jb-font-display);
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: var(--jb-display-weight);
  line-height: 1.25;
  letter-spacing: var(--jb-display-tracking);
  color: var(--jb-ink);
}

.jb-about__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--jb-s2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.jb-fact {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--jb-s5) var(--jb-s4);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .5);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  overflow: hidden;
  isolation: isolate;
}

/* Watermark: the tile's own subject, drawn large and faint and bled off the
   corner so it reads as a texture rather than as a second icon competing with
   the figure. Amber keeps it in the brand and away from the text's contrast. */
.jb-fact__art {
  position: absolute;
  z-index: -1;
  inset-inline-end: -18px;
  bottom: -18px;
  width: 104px;
  height: 104px;
  color: var(--jb-amber);
  opacity: .22;
  pointer-events: none;
}
.jb-fact__art .jb-icon {
  width: 100%;
  height: 100%;
  /* The icon set is drawn for 20px; at five times the size its stroke would
     read as a heavy outline. */
  stroke-width: 1;
}
.jb-fact__art .jb-icon--solid { opacity: .8; }

.jb-fact__value {
  font-family: var(--jb-font-display);
  font-size: clamp(1.75rem, 5vw, 2.4rem);
  font-weight: var(--jb-display-weight);
  line-height: 1;
  letter-spacing: var(--jb-display-tracking);
  color: var(--jb-ink);
}

.jb-fact__label {
  font-size: var(--jb-fs-xs);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--jb-500);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .jb-fact { background: var(--jb-white); border-color: var(--jb-200); }
}

/* ---------- Range ---------- */

.jb-about__section { margin-top: var(--jb-s7); }

.jb-about__subtitle {
  margin: 0 0 var(--jb-s4);
  font-family: var(--jb-font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: var(--jb-display-weight);
  letter-spacing: var(--jb-display-tracking);
  text-transform: uppercase;
}
.jb-about__subtitle::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  margin-top: var(--jb-s3);
  background: var(--jb-amber);
}

.jb-about__cats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--jb-s2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.jb-about__cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--jb-s3);
  padding: var(--jb-s4);
  border-radius: 12px;
  background: var(--jb-white);
  box-shadow: 0 1px 2px rgba(16, 21, 27, .06);
  font-family: var(--jb-font-display);
  font-size: 1.1rem;
  font-weight: var(--jb-display-weight);
  letter-spacing: var(--jb-display-tracking);
  color: var(--jb-ink);
  transition: transform .15s ease, box-shadow .15s ease;
}
.jb-about__cat:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(16, 21, 27, .12);
}

.jb-about__cat-go {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 50%;
  background: var(--jb-amber-soft);
  color: var(--jb-ink);
  font-size: .95rem;
  line-height: 1;
  transition: background .15s ease, transform .15s ease;
}
.jb-about__cat:hover .jb-about__cat-go {
  background: var(--jb-amber);
  transform: translateX(2px);
}

/* ---------- Closing band ---------- */

.jb-about__cta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--jb-s5);
  margin-top: var(--jb-s7);
  padding: var(--jb-s6) var(--jb-s5);
  border-radius: 16px;
  background:
    radial-gradient(110% 90% at 100% 0%, rgba(255, 177, 0, .26), transparent 60%),
    var(--jb-ink);
  color: #fff;
  overflow: hidden;
}
/* Same hazard stripe as the contact card and the footer. */
.jb-about__cta::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 6px;
  background: repeating-linear-gradient(
    -45deg,
    var(--jb-amber) 0 10px,
    transparent 10px 20px
  );
}

.jb-about__cta-title {
  margin: 0;
  font-family: var(--jb-font-display);
  font-size: clamp(1.5rem, 3.6vw, 2.1rem);
  font-weight: var(--jb-display-weight);
  line-height: 1.1;
  letter-spacing: var(--jb-display-tracking);
  text-wrap: balance;
}

.jb-about__cta-meta {
  margin: var(--jb-s2) 0 0;
  font-size: var(--jb-fs-sm);
  color: rgba(255, 255, 255, .72);
}

.jb-about__cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--jb-s4);
}

.jb-about__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--jb-fs-sm);
  font-weight: 700;
  color: rgba(255, 255, 255, .8);
  transition: color .15s ease, gap .15s ease;
}
.jb-about__cta-link:hover { gap: 10px; color: #fff; }

@media (max-width: 480px) {
  .jb-about__cta-actions { width: 100%; }
  .jb-about__cta-actions .jb-btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .jb-about__cat,
  .jb-about__cat-go { transition: none; }
  .jb-about__cat:hover { transform: none; }
  .jb-about__cat:hover .jb-about__cat-go { transform: none; }
}
