/* About / studio page — full-bleed hero, principles, editorial statement, workshops, showroom, trade band */

/* ---------- Hero (echoes the collection hero) ---------- */
.about__hero { position: relative; min-height: clamp(540px, 80svh, 880px); display: grid; align-items: end; color: var(--paper); overflow: hidden; isolation: isolate; }
.about__hero-media { position: absolute; inset: 0; z-index: -1; }
.about__hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; transform: scale(1.04) translateY(calc(var(--scroll-y, 0) * 0.1px)); opacity: 0; transition: opacity 1.2s var(--ease-out); }
.about__hero-media img.is-loaded { opacity: 1; }
.about__hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgb(19 19 18 / 0.32), rgb(19 19 18 / 0.06) 40%, rgb(19 19 18 / 0.72)); }
.about__hero-inner { display: grid; gap: var(--s-4); justify-items: start; padding-block: calc(var(--header-h) + var(--s-7)) var(--s-8); }
.about__hero-inner .crumbs { color: rgb(244 243 239 / 0.7); margin-bottom: var(--s-3); }
.about__hero-inner .crumbs li[aria-current] { color: var(--paper); }
.about__hero-inner .eyebrow { color: inherit; opacity: 0.85; }
.about__title { max-width: 12ch; }
.about__lede { max-width: 44ch; margin-top: var(--s-2); font-size: var(--text-md); opacity: 0.9; }

/* ---------- Principles (story__step rhythm, not sticky) ---------- */
.about__principles { display: grid; gap: var(--s-4); }
@media (min-width: 900px) { .about__principles { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s-6); } }
.about__principle { display: grid; grid-template-columns: 40px minmax(0, 1fr); gap: var(--s-4); padding-block: var(--s-5) var(--s-4); border-top: 1px solid var(--line); }
.about__principle > .mono { padding-top: 7px; }
.about__principle h3 { font-size: var(--text-lg); font-weight: 500; margin-bottom: var(--s-3); }
.about__principle p { color: var(--ink-2); }

/* ---------- Editorial statement ---------- */
.about__statement { display: grid; gap: var(--s-6); padding-top: var(--s-7); border-top: 1px solid var(--line); }
@media (min-width: 900px) { .about__statement { grid-template-columns: 7fr 5fr; gap: var(--s-9); align-items: end; } }
.about__statement-text { max-width: 24ch; margin-top: var(--s-5); }
.about__statement-note { max-width: 44ch; color: var(--ink-2); }

/* ---------- Workshops (edit-item tiles, 3:2) ---------- */
.about__workshops { display: grid; gap: var(--s-4); }
@media (min-width: 720px) { .about__workshops { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
/* The workshop photos are far brighter than the home-page tiles, so the shared caption scrim is too light here.
   Name on top, the small mono labels along the bottom edge where the scrim is deepest; the scrim itself is ink at
   alpha (as the hero gradient) and starts its fade higher so the labels never sit on its transparent tail. */
.about__workshop .edit-item__cap {
  display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--s-2) var(--s-4); align-items: end;
  padding-top: var(--s-8);
  background: linear-gradient(0deg, rgb(19 19 18 / 0.78), rgb(19 19 18 / 0.68) 36%, rgb(19 19 18 / 0.48) 56%, rgb(19 19 18 / 0.24) 74%, rgb(19 19 18 / 0.08) 88%, transparent); /* eased so the onset has no visible horizon */
}
.about__workshop .edit-item__cap strong { display: block; margin-bottom: var(--s-1); }
.about__workshop .edit-item__cap .mono { opacity: 1; margin-bottom: 0; justify-self: start; }
.about__workshop-craft { color: var(--paper); }
.about__workshop-place { color: rgb(244 243 239 / 0.9); }
@media (min-width: 1024px) { /* craft left, place right on one line once a tile is wide enough */
  .about__workshop .edit-item__cap { grid-template-columns: minmax(0, 1fr) auto; }
  .about__workshop .edit-item__cap strong { grid-column: 1 / -1; }
  .about__workshop-place { justify-self: end; text-align: right; }
}

/* ---------- Showroom (split) ---------- */
.about__showroom { display: grid; gap: var(--s-6); }
@media (min-width: 900px) { .about__showroom { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--s-9); align-items: center; } }
.about__showroom-media { aspect-ratio: 3 / 2; }
@media (min-width: 900px) { .about__showroom-media { aspect-ratio: 4 / 5; } }
.about__showroom-text { display: grid; gap: var(--s-5); max-width: 52ch; }
.about__showroom-text .btn { justify-self: start; }
.about__facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: var(--s-4); padding-top: var(--s-4); border-top: 1px solid var(--line); }
.about__facts dt { color: var(--ink-3); margin-bottom: 4px; }
.about__facts dd { font-size: var(--text-sm); font-weight: 500; }

/* Sprite arrows carry no stroke of their own; give the page's button and link arrows the icon treatment. */
.page-about .btn .arrow, .page-about .link .arrow { stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Trade band ---------- */
.about__trade { background: var(--paper-2); border-block: 1px solid var(--line); }
.about__trade-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: var(--s-4) var(--s-7); padding-block: var(--s-6); }
.about__trade-inner .mono { display: block; margin-bottom: var(--s-2); }
.about__trade-inner p { max-width: 56ch; }
